home *** CD-ROM | disk | FTP | other *** search
/ Libris Britannia 4 / science library(b).zip / science library(b) / PROGRAMM / 2499.ZIP / VERREG.ZIP / DEMO < prev    next >
Text File  |  1990-06-13  |  1KB  |  49 lines

  1. #
  2. #  Standard command line definitions
  3. #
  4.  
  5. # -c    = No automatic linking
  6. # -AM   = Medium memory model
  7. # -Gsw  = No stack probes, compile for windows
  8. # -Ows  = Alias checking for Windows, optimize for code size
  9. # -Zlpe = Supress default library selection,
  10. #      Pack structures on byte boundries,
  11. #      Enable language extensions.
  12. # -W4    = Compile at the maximum warning level
  13. # -W2    = Compile at the medium warning level
  14. # -D    = Define the next word
  15. # -NT    = Name the text segment for this module
  16. CP = cl -c -AM -Gsw -Ows -Zlpe -W4
  17.  
  18.  
  19. #
  20. # Compile resource control script
  21. #
  22. Demo.res: Demo.rc Demo.rch
  23.     rc -r Demo.rc
  24.  
  25.  
  26.  
  27. # ***************************************************************************
  28. # The following lines are for common source files
  29. # ***************************************************************************
  30.  
  31. # Main function
  32. Demo.obj: Demo.c Demo.h
  33.     $(cp) $*.c
  34.  
  35.  
  36.  
  37.  
  38. # ***************************************************************************
  39. # The following are for Demo.EXE Dependency
  40. # ***************************************************************************
  41. Demo.exe: Demo.obj
  42.     link @Demo.lnk
  43.     rc Demo.res
  44.  
  45.  
  46. Demo.exe: Demo.res
  47.     rc Demo.res
  48.  
  49.